home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / sockv2 / about.dfm / about.txt
Text File  |  1996-04-08  |  2KB  |  70 lines

  1. object AboutBox: TAboutBox
  2.   Left = 238
  3.   Top = 184
  4.   ActiveControl = OKButton
  5.   BorderStyle = bsDialog
  6.   Caption = 'About'
  7.   ClientHeight = 315
  8.   ClientWidth = 468
  9.   Font.Color = clWindowText
  10.   Font.Height = -13
  11.   Font.Name = 'System'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   TextHeight = 16
  16.   object Panel1: TPanel
  17.     Left = 8
  18.     Top = 8
  19.     Width = 449
  20.     Height = 257
  21.     BevelInner = bvRaised
  22.     BevelOuter = bvLowered
  23.     TabOrder = 0
  24.     object Memo1: TMemo
  25.       Left = 8
  26.       Top = 8
  27.       Width = 433
  28.       Height = 241
  29.       Color = clBackground
  30.       Font.Color = clBlack
  31.       Font.Height = -13
  32.       Font.Name = 'Arial'
  33.       Font.Style = []
  34.       Lines.Strings = (
  35.         'This is a simple example application that acts as either a '
  36.         'server or a client and is intended to be started twice. One '
  37.         'instance of the program becomes the server (Listen) and the '
  38.         'other instance becomes the client (Connect). The program can '
  39.         'either be started on seperate PCs that are both connected via'
  40.         'TCP/IP or on the same PC.'
  41.         ''
  42.         'Once the two instances are started, Click '#39'Listen'#39' on one and '
  43.         #39'Connect'#39' on the other. The client can then send data to the '
  44.         'listening server which echos the data back to the client.'
  45.         ''
  46.         'This sample is intended only to demonstrate the SOCKETS'
  47.         'component and has no other practical use.')
  48.       ParentFont = False
  49.       TabOrder = 0
  50.     end
  51.   end
  52.   object OKButton: TBitBtn
  53.     Left = 191
  54.     Top = 274
  55.     Width = 77
  56.     Height = 27
  57.     Font.Color = clBlack
  58.     Font.Height = -11
  59.     Font.Name = 'MS Sans Serif'
  60.     Font.Style = [fsBold]
  61.     ParentFont = False
  62.     TabOrder = 1
  63.     OnClick = OKButtonClick
  64.     Kind = bkOK
  65.     Margin = 2
  66.     Spacing = -1
  67.     IsControl = True
  68.   end
  69. end
  70.